NuGet Gallery 您所在的位置:网站首页 wpf webbrowser ChakraCore NuGet Gallery

NuGet Gallery

2023-03-27 23:11| 来源: 网络整理| 查看: 265

DotNetBrowser

Integrate a Chromium-based browser into your .NET application to load and process modern web pages built with HTML5, CSS3, JavaScript etc.

To be able to use DotNetBrowser, you should obtain a license. A free 30-day evaluation license can be requested by filling a form at https://www.teamdev.com/dotnetbrowser#evaluate

Deep Chromium integration

DotNetBrowser provides API that can be used to interact with a huge set of various Chromium features directly from the code:

DOM API: you can access Document Object Model of the loaded web page, find elements and interact with them, handle and dispatch DOM events for the particular nodes. JS-.NET bridge: you can execute JavaScript on the web page and process the results. You can also inject any .NET object into the web page and then use it in your JavaScript code. Printing API: you can initiate and configure printing programmatically. Printing to PDF is also supported out of box. Network API: you can intercept, redirect, handle, and suppress network requests, override HTTP headers and POST data, filter out incoming and outgoing cookies, change proxy settings on the fly.

See the examples to understand what can be implemented with DotNetBrowser.

Easy deployment

All required Chromium binaries are deployed as DotNetBrowser DLLs and can be extracted automatically during execution. You don't need to pre-install Chromium, Google Chrome, or a Chromium-based runtime to work with DotNetBrowser.

The current release of DotNetBrowser uses Chromium build 111.0.5563.65.

Headless mode

DotNetBrowser can be used in Windows services and server apps. The web page can be loaded and rendered completely in memory without displaying any visible windows. You can then take a screenshot of the loaded web page.

User input simulation

DotNetBrowser provides means to simulate mouse and keyboard input and interact with the web page programmatically - exactly as regular users do.

UI

DotNetBrowser provides UI controls for WPF and Windows Forms applications. These controls can be used to display web pages as integral parts of the .NET applications. It is also possible to use DotNetBrowser to create VSTO add-ins.

Usage

Note: The VB.NET examples can be found in the examples repository.

WPF

XAML

Code

using System; using System.Windows using DotNetBrowser.Browser; using DotNetBrowser.Engine; namespace Sample.Wpf { public partial class MainWindow : Window { private readonly IEngine engine; private readonly IBrowser browser; public MainWindow() { InitializeComponent(); // Create and initialize the IEngine engine = EngineFactory.Create(); // Create the IBrowser browser = engine.CreateBrowser(); browser.Navigation.LoadUrl("https://teamdev.com/dotnetbrowser"); // Initialize the WPF BrowserView control browserView.InitializeFrom(browser); } private void MainWindow_OnClosed(object sender, EventArgs e) { browser.Dispose(); engine.Dispose(); } } } Windows Forms using System; using System.Windows.Forms; using DotNetBrowser.Browser; using DotNetBrowser.Engine; using DotNetBrowser.WinForms; namespace Sample.WinForms { public partial class Form1 : Form { private readonly IEngine engine; private readonly IBrowser browser; public Form1() { InitializeComponent(); // Create and initialize the IEngine engine = EngineFactory.Create(); // Create the Windows Forms BrowserView control BrowserView browserView = new BrowserView() { Dock = DockStyle.Fill }; // Create the IBrowser browser = engine.CreateBrowser(); browser.Navigation.LoadUrl("https://teamdev.com/dotnetbrowser"); // Initialize the Windows Forms BrowserView control browserView.InitializeFrom(browser); // Add the BrowserView control to the Form Controls.Add(browserView); Closed += Form1Closed; } private void Form1Closed(object sender, EventArgs e) { browser.Dispose(); engine.Dispose(); } } }


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有